File: test_util.h

package info (click to toggle)
udt 4.11%2Bdfsg1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,084 kB
  • sloc: cpp: 10,426; makefile: 53
file content (17 lines) | stat: -rw-r--r-- 288 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _UDT_TEST_UTIL_H_
#define _UDT_TEST_UTIL_H_

struct UDTUpDown{
   UDTUpDown()
   {
      // use this function to initialize the UDT library
      UDT::startup();
   }
   ~UDTUpDown()
   {
      // use this function to release the UDT library
      UDT::cleanup();
   }
};

#endif