/[projects]/smsdaemon/Spooler.h
ViewVC logotype

Contents of /smsdaemon/Spooler.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 196 - (show annotations) (download)
Thu Dec 18 06:53:29 2008 UTC (15 years, 4 months ago) by torben
File MIME type: text/plain
File size: 341 byte(s)
Make pretty

astyle -t -b -N

1 #ifndef __SPOOLER_H__
2 #define __SPOOLER_H__
3
4 #include <string>
5
6
7 class Spooler
8 {
9 public:
10 void enqueue(std::string recipient, std::string message);
11 std::string dequeue();
12
13 std::string getFilename();
14 private:
15 std::string findSpoolFilename();
16
17 void lock();
18 void unlock();
19
20 int lockfd;
21
22 std::string filename;
23 };
24 #endif // __SPOOLER_H__

  ViewVC Help
Powered by ViewVC 1.1.20