//
    public void PublisherDB(string topicName, tmsdbStamped msg)
    {
        PublishDB temp = new PublishDB(topicName, msg);

        SendOpMsg(temp);
    }
 public PublishDB(string topic, tmsdbStamped msg)
 {
     this.topic = topic;
     this.msg   = msg;
 }