OSDN Git Service

add class
authorikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Thu, 22 May 2003 14:38:02 +0000 (14:38 +0000)
committerikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Thu, 22 May 2003 14:38:02 +0000 (14:38 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/kita/kita/trunk@256 56b19765-1e22-0410-a548-a0f45d66c51a

kita/src/libkita/Makefile.am
kita/src/libkita/favoritethreads.cpp [new file with mode: 0644]
kita/src/libkita/favoritethreads.h [new file with mode: 0644]

index a244b7a..bb0d7bb 100644 (file)
@@ -2,4 +2,4 @@ INCLUDES = $(all_includes)
 
 lib_LTLIBRARIES = libkita.la
 
-libkita_la_SOURCES = comment.cpp comment.h thread.h thread.cpp qcp932codec.cpp qcp932codec.h board.h board.cpp bbs.h bbs.cpp category.h category.cpp
+libkita_la_SOURCES = comment.cpp comment.h thread.h thread.cpp qcp932codec.cpp qcp932codec.h board.h board.cpp bbs.h bbs.cpp category.h category.cpp favoritethreads.h favoritethreads.cpp
diff --git a/kita/src/libkita/favoritethreads.cpp b/kita/src/libkita/favoritethreads.cpp
new file mode 100644 (file)
index 0000000..7685bd4
--- /dev/null
@@ -0,0 +1,20 @@
+/***************************************************************************
+ *   Copyright (C) 2003 by Hideki Ikemoto                                  *
+ *   ikemo@users.sourceforge.jp                                            *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ ***************************************************************************/
+
+#include "favoritethreads.h"
+
+FavoriteThreads::FavoriteThreads()
+{
+}
+
+
+FavoriteThreads::~FavoriteThreads()
+{
+}
diff --git a/kita/src/libkita/favoritethreads.h b/kita/src/libkita/favoritethreads.h
new file mode 100644 (file)
index 0000000..3586c51
--- /dev/null
@@ -0,0 +1,26 @@
+/***************************************************************************
+ *   Copyright (C) 2003 by Hideki Ikemoto                                  *
+ *   ikemo@users.sourceforge.jp                                            *
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ ***************************************************************************/
+
+#ifndef FAVORITETHREADS_H
+#define FAVORITETHREADS_H
+
+#include "thread.h"
+
+/**
+@author Hideki Ikemoto
+*/
+class FavoriteThreads{
+  QValueList<Kita::Thread> m_threadList;
+public:
+  FavoriteThreads();
+  ~FavoriteThreads();
+};
+
+#endif