ns-3 PLC model
model/plc.h
00001 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
00002 /*
00003  * Copyright (c) 2012 University of British Columbia, Vancouver
00004  *
00005  * This program is free software; you can redistribute it and/or modify
00006  * it under the terms of the GNU General Public License version 2 as
00007  * published by the Free Software Foundation;
00008  *
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, write to the Free Software
00016  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00017  *
00018  * Author: Alexander Schloegl <alexander.schloegl@gmx.de>
00019  */
00020 
00025 #ifndef PLC_H_
00026 #define PLC_H_
00027 
00028 // stl includes
00029 #include <iostream>
00030 #include <vector>
00031 
00032 // ns-3 includes
00033 #include <ns3/log.h>
00034 #include <ns3/spectrum-value.h>
00035 #include <ns3/spectrum-model.h>
00036 
00037 // plc model includes
00038 #include "ns3/plc-defs.h"
00039 #include "ns3/plc-time.h"
00040 #include "ns3/plc-value.h"
00041 #include "ns3/plc-cable.h"
00042 #include "ns3/plc-edge.h"
00043 #include "ns3/plc-node.h"
00044 #include "ns3/plc-graph.h"
00045 #include "ns3/plc-channel.h"
00046 #include "ns3/plc-backbone.h"
00047 #include "ns3/plc-outlet.h"
00048 #include "ns3/plc-noise.h"
00049 #include "ns3/plc-phy.h"
00050 //#include "ns3/plc-mac.h"
00051 //#include "ns3/plc-net-device.h"
00052 
00053 // plc helper includes
00054 #include "ns3/plc-helper.h"
00055 //#include "ns3/plc-device-helper.h"
00056 #include "ns3/plc-spectrum-helper.h"
00057 
00058 #endif /* PLC_H_ */
 All Classes Functions Variables Enumerations