Node2.h

Go to the documentation of this file.
00001 /*
00002  *    Copyright 2004-2006 Intel Corporation
00003  * 
00004  *    Licensed under the Apache License, Version 2.0 (the "License");
00005  *    you may not use this file except in compliance with the License.
00006  *    You may obtain a copy of the License at
00007  * 
00008  *        http://www.apache.org/licenses/LICENSE-2.0
00009  * 
00010  *    Unless required by applicable law or agreed to in writing, software
00011  *    distributed under the License is distributed on an "AS IS" BASIS,
00012  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  *    See the License for the specific language governing permissions and
00014  *    limitations under the License.
00015  */
00016 
00017 
00018 #ifndef _NODE2_H_
00019 #define _NODE2_H_
00020 
00021 /*
00022  * Interface to DTN2  and Simulator
00023  */
00024 
00025 
00026 #include "Node.h"
00027 
00028 namespace dtnsim {
00029 
00030 
00031 
00032 class GlueNode : public Processable, public oasys::Logger {
00033 
00034 public:
00035     static long next() {
00036         return total_ ++ ;
00037     }
00038 
00039     
00040     Node(int id);
00041     virtual ~Node();
00042 
00043     virtual void process(Event *e); 
00044     int id() { return id_ ;}
00045 
00046     
00047    virtual  void chewing_complete(Contact* c, double size, Message* msg);
00048    virtual  void open_contact(Contact* c);
00049    virtual  void close_contact(Contact* c);
00050    virtual  void forward(Message* msg);
00051     
00052 private:
00053     static long total_;
00054     int id_;
00055     std::vector<Message*> msgq_;
00056     //   EndpointID name_;
00057 };
00058 
00059 } // namespace dtnsim
00060 
00061 #endif /* _NODE2_H_ */

Generated on Sat Sep 8 08:36:17 2007 for DTN Reference Implementation by  doxygen 1.5.3