mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 09:21:54 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
24 lines
796 B
C++
24 lines
796 B
C++
//======== (C) Copyright 2002 Charles G. Cleveland All rights reserved. =========
|
|
//
|
|
// The copyright to the contents herein is the property of Charles G. Cleveland.
|
|
// The contents may be used and/or copied only with the written permission of
|
|
// Charles G. Cleveland, or in accordance with the terms and conditions stipulated in
|
|
// the agreement/contract under which the contents have been supplied.
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $Workfile: $
|
|
// $Date: $
|
|
//
|
|
//-------------------------------------------------------------------------------
|
|
// $Log: $
|
|
//===============================================================================
|
|
#ifndef AVHMESSAGELIST_H
|
|
#define AVHMESSAGELIST_H
|
|
|
|
#include <vector>
|
|
using std::vector;
|
|
|
|
typedef vector<AvHMessageID> MessageIDListType;
|
|
|
|
#endif
|