~lucadestudios/lucadestudios/trunk

« back to all changes in this revision

Viewing changes to engine/src/shared/network/src/shared/network/node_process.h

  • Committer: Sean Hodges
  • Date: 2009-04-27 11:13:39 UTC
  • mfrom: (62.1.18 trunk)
  • Revision ID: seanhodges@bluebottle.com-20090427111339-d0ay5y47wxu3qlj1
Merged with upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef NODE_PROCESS_H_INCLUDED
 
2
#define NODE_PROCESS_H_INCLUDED
 
3
 
 
4
#include "boost/shared_ptr.hpp"
 
5
 
 
6
namespace lucade {
 
7
namespace network {
 
8
 
 
9
class node_process {
 
10
public:
 
11
    void run() throw ();
 
12
    void stop();
 
13
};
 
14
 
 
15
typedef boost::shared_ptr<node_process> node_process_ptr;
 
16
}
 
17
}
 
18
 
 
19
#endif // NODE_PROCESS_H_INCLUDED