make method private

This commit is contained in:
Eric House 2013-08-25 12:32:26 -07:00
parent cf3437c686
commit 69f34f4ef8

View file

@ -31,7 +31,6 @@ using namespace std;
class DevMgr {
public:
static DevMgr* Get();
void rememberDevice( DevIDRelay devid, const AddrInfo::AddrUnion* saddr );
void rememberDevice( DevIDRelay devid, const AddrInfo* addr );
const AddrInfo::AddrUnion* get( DevIDRelay devid );
@ -41,6 +40,8 @@ class DevMgr {
private:
void rememberDevice( DevIDRelay devid, const AddrInfo::AddrUnion* saddr );
/* destructor's never called....
~DevMgr() { pthread_mutex_destroy( &m_mapLock ); }
*/