/[H7]/branches/linux-serial/server/thread.h
ViewVC logotype

Contents of /branches/linux-serial/server/thread.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 67 - (show annotations) (download)
Tue Feb 6 23:37:39 2007 UTC (17 years, 3 months ago) by torben
File MIME type: text/plain
File size: 180 byte(s)
Added some more of the H7 linux server - now it basically works :)


1 #pragma once
2
3
4
5 class Thread
6 {
7 protected:
8 bool mContinue;
9 bool mStopped;
10 public:
11 Thread();
12
13 virtual void stop();
14 virtual bool stopped();
15
16 virtual void operator()() = 0;
17 };

  ViewVC Help
Powered by ViewVC 1.1.20