X-Git-Url: http://plrg.eecs.uci.edu/git/?p=iot2.git;a=blobdiff_plain;f=iotjava%2Fiotruntime%2Fcpp%2Fiotslave%2FIoTSlave.hpp;h=bbac3988c813df24718e913d20b95b1ad8eda889;hp=9024bce4b190b17f81a24b073d0a2ca9c1a29a34;hb=39563ab07eb793e7be02984f6ab5604f82bfc0c4;hpb=ffea2cb68e5a2e1bac041fe2279620eba8d227f8 diff --git a/iotjava/iotruntime/cpp/iotslave/IoTSlave.hpp b/iotjava/iotruntime/cpp/iotslave/IoTSlave.hpp index 9024bce..bbac398 100644 --- a/iotjava/iotruntime/cpp/iotslave/IoTSlave.hpp +++ b/iotjava/iotruntime/cpp/iotslave/IoTSlave.hpp @@ -61,6 +61,7 @@ class IoTSlave final { const static int RCVBUFSIZE = 1024; // Size of receive buffer const static int SKELPARAMSIZE = 3; // Number of params for skeleton const static int STUBPARAMSIZE = 5; // Number of params for stub + const static string LOGFILEPATH; // Log file path const static string FILEPATH; // File path const static string FILEEXT; // File extension const static string SOEXT; // Shared object (.so) extension @@ -161,6 +162,7 @@ class IoTSlave final { }; // Constant initialization +const string IoTSlave::LOGFILEPATH = "../log/"; const string IoTSlave::FILEPATH = "./"; const string IoTSlave::FILEEXT = "_cpp.log"; const string IoTSlave::SOEXT = ".so";