sP2P c++ STL *nix API  1.2
NAT traversal and peer-to-peer networking API providing all utilities needed to build peer-to-peer application straigth out of box
 All Classes Functions Variables Typedefs Enumerations Enumerator
sP2PBase.h
1 /*
2 #################################################################################################
3 # sP2P NAT Traversal/Peer-To-Peer networking API
4 #
5 # This file is part of comercial product. You can not use it in any way, redistribute it
6 # in any way and/or modify it in any way unless you get right to do so.
7 #
8 # Use licence can only be acquired from:
9 # ---------------------------------------------------
10 # AS-CAL,raziskave in razvoj, d.o.o.
11 # Kongresni trg 9, 1000 Ljubljana - Slovenia
12 # Company ID: 3913147000
13 # ---------------------------------------------------
14 # , or product legal successor.
15 #
16 #################################################################################################
17 # Ivan Milic
18 # HOLEST Engineering
19 # www.holest.com
20 # Belgrade, Serbia
21 # January, 2013
22 ##################################################################################################
23 */
24 
25 
26 
27 #ifndef _SP2PBASE_H
28 #define _SP2PBASE_H
29 
30 #include "Common.h"
31 #include <string>
32 #include <set>
33 
34 namespace sp2plib{
35 
36 class SP2P_API sP2PBase{
37 public:
38 
39 
40  virtual ::std::string ObjectClassName() { return "sP2PBase";}
41  void WriteLogEntry(::std::string Text);
42 
43 
44 
45 };
46 
47 }
48 
49 #endif