Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tools/sci/org.eclipse.ptp.sci/libsci/filter.hpp')
-rw-r--r--tools/sci/org.eclipse.ptp.sci/libsci/filter.hpp65
1 files changed, 0 insertions, 65 deletions
diff --git a/tools/sci/org.eclipse.ptp.sci/libsci/filter.hpp b/tools/sci/org.eclipse.ptp.sci/libsci/filter.hpp
deleted file mode 100644
index b698bf15d..000000000
--- a/tools/sci/org.eclipse.ptp.sci/libsci/filter.hpp
+++ /dev/null
@@ -1,65 +0,0 @@
-#ifndef _PRAGMA_COPYRIGHT_
-#define _PRAGMA_COPYRIGHT_
-#pragma comment(copyright, "%Z% %I% %W% %D% %T%\0")
-#endif /* _PRAGMA_COPYRIGHT_ */
-/****************************************************************************
-
-* Copyright (c) 2008, 2010 IBM Corporation.
-* All rights reserved. This program and the accompanying materials
-* are made available under the terms of the Eclipse Public License v1.0s
-* which accompanies this distribution, and is available at
-* http://www.eclipse.org/legal/epl-v10.html
-
- Classes: Filter
-
- Description: Filter manipulation.
-
- Author: Nicole Nie
-
- History:
- Date Who ID Description
- -------- --- --- -----------
- 10/06/08 nieyy Initial code (D153875)
-
-****************************************************************************/
-
-#ifndef _FILTER_HPP
-#define _FILTER_HPP
-
-#include "sci.h"
-#include "general.hpp"
-
-class Message;
-
-class Filter
-{
- public:
- struct Handler {
- filter_init_hndlr *init_hndlr;
- filter_input_hndlr *input_hndlr;
- filter_term_hndlr *term_hndlr;
- };
-
- private:
- sci_filter_info_t info;
- Handler handler;
- void *param;
- void *file;
-
- public:
- Filter();
- Filter(sci_filter_info_t &filter_info);
- ~Filter();
-
- Message * packMsg();
- void unpackMsg(Message &msg);
-
- int load();
- int input(sci_group_t group, void *buf, int size);
- int unload();
-
- int getId();
-};
-
-#endif
-

Back to the top