20 lines
747 B
C#
20 lines
747 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Collections;
|
|
|
|
namespace MotoRepeater
|
|
{
|
|
public class SN_Queues
|
|
{
|
|
public static InterthreadMessageQueue<MotoTRBOcmdMsg> locationQueue = new InterthreadMessageQueue<MotoTRBOcmdMsg>();
|
|
public static InterthreadMessageQueue<htCell_t> DBQueueLocation = new InterthreadMessageQueue<htCell_t>();
|
|
public static InterthreadMessageQueue<SMSmsg> sendSMSQueue = new InterthreadMessageQueue<SMSmsg>();
|
|
public static InterthreadMessageQueue<SMSmsg> confSMSQueue = new InterthreadMessageQueue<SMSmsg>();
|
|
|
|
public static InterthreadMessageQueue<ArsMSG> arsMsgQueue = new InterthreadMessageQueue<ArsMSG>();
|
|
|
|
}
|
|
}
|