Sirikata
libspace/plugins/master-pinto/MasterPintoManualServerQuerier.hpp
Go to the documentation of this file.
00001 // Copyright (c) 2012 Sirikata Authors. All rights reserved.
00002 // Use of this source code is governed by a BSD-style license that can
00003 // be found in the LICENSE file.
00004 
00005 #ifndef _SIRIKATA_LIBSPACE_MASTER_PINTO_MANUAL_SERVER_QUERIER_HPP_
00006 #define _SIRIKATA_LIBSPACE_MASTER_PINTO_MANUAL_SERVER_QUERIER_HPP_
00007 
00008 #include "MasterPintoServerQuerierBase.hpp"
00009 
00010 namespace Sirikata {
00011 
00015 class MasterPintoManualServerQuerier : public MasterPintoServerQuerierBase {
00016 public:
00017     MasterPintoManualServerQuerier(SpaceContext* ctx, const String& params);
00018     virtual ~MasterPintoManualServerQuerier();
00019 
00020     // PintoServerQuerier Interface
00021     virtual void updateQuery(const String& update);
00022 
00023 private:
00024     virtual void onPintoData(const String& msg);
00025 
00026 }; // MasterPintoManualServerQuerier
00027 
00028 } // namespace Sirikata
00029 
00030 #endif //_SIRIKATA_LIBSPACE_MASTER_PINTO_MANUAL_SERVER_QUERIER_HPP_