File: AbstractVehicleEvent.h

package info (click to toggle)
mummy 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,628 kB
  • ctags: 1,000
  • sloc: cpp: 10,667; cs: 1,107; makefile: 22; xml: 8; sh: 5
file content (13 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _ABSTRACTVEHICLEEVENT_H
#define _ABSTRACTVEHICLEEVENT_H

#include "VehiclesConfig.h"

#include "SenderDataEvent.h"

template <typename DataT>
class AbstractVehicleEvent : public SenderDataEvent<AbstractVehicle*, DataT>
{
};

#endif // _ABSTRACTVEHICLEEVENT_H