Rudiments
mvcsecurity.h
1 // Copyright (c) 1999-2018 David Muse
2 // See the COPYING file for more informations.
3 
4 #ifndef RUDIMENTS_MVCSECURITY_H
5 #define RUDIMENTS_MVCSECURITY_H 1
6 
7 #include <rudiments/private/dll.h>
8 
9 class RUDIMENTS_DLLSPEC mvcsecurity {
10  public:
11  mvcsecurity() {};
12  virtual ~mvcsecurity() {};
13  virtual const char *getUserName()=0;
14 };
15 
16 #endif
Definition: mvcsecurity.h:9