/* * test_admin.cc * * Created on: Jun 7, 2010 * Author: lamikr */ #include "plpbus/BusClient.hh" using namespace std; using namespace plpbus; int main(int argc, char** argv) { BusClient *client; cout << "hello world" << endl; client = new plpbus::BusClient(); client->init(argv[1]); client->request_shutdown(); delete(client); return 0; }