File: serverstub.cc

package info (click to toggle)
imms 2.0.3-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 736 kB
  • ctags: 901
  • sloc: cpp: 5,532; ansic: 1,096; sh: 186; makefile: 113
file content (30 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "serverstub.h"

#include <iostream>
#include <sstream>

using std::cerr;
using std::endl;
using std::ostringstream;

void IMMSServer::request_playlist_change()
{
    write_command("RequestPlaylistChange");
} 

void IMMSServer::request_playlist_item(int index)
{
    ostringstream osstr;
    osstr << "GetPlaylistItem " << index;
    write_command(osstr.str());
}

void IMMSServer::request_entire_playlist()
{
    write_command("GetEntirePlaylist");
}

void IMMSServer::reset_selection()
{
    write_command("ResetSelection");
}