~imalinovskiy/rdm/0.8

« back to all changes in this revision

Viewing changes to 3rdparty/easyloggingpp/samples/STL/shared-storage/lib/include/mylib.hpp

  • Committer: RDM Bot
  • Date: 2016-02-04 11:29:17 UTC
  • Revision ID: git-v1:92436de8ed24fe0a57651f4a61caba27995ad55b
Pull updates from https://github.com/uglide/RedisDesktopManager

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "easylogging++.h"
 
2
 
 
3
class MyLib {
 
4
public:
 
5
    MyLib();
 
6
    MyLib(int, char**);
 
7
    ~MyLib();
 
8
    void event(int a);
 
9
    static el::base::type::StoragePointer getEasyloggingStorage();
 
10
private:
 
11
    static int runOnceHelper;
 
12
    static int runOnce();
 
13
};