00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _SK_RT_THREAD_EXIT_H_
00012 #define _SK_RT_THREAD_EXIT_H_
00013
00014 #include <sk/util/Exception.h>
00015
00016 namespace sk {
00017 namespace rt {
00018 namespace thread {
00019 class Exit
00020 : public sk::util::Exception
00021 {
00022 public:
00023 Exit(int code);
00024 virtual ~Exit() throw();
00025
00026 int getCode() const;
00027
00028
00029 const sk::util::Class getClass() const;
00030
00031 private:
00032 int _code;
00033 };
00034 }
00035 }
00036 }
00037
00038 #endif