Ocean
Loading...
Searching...
No Matches
tracking/Tracker.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#ifndef META_OCEAN_TRACKING_TRACKER_H
9#define META_OCEAN_TRACKING_TRACKER_H
10
12
13namespace Ocean
14{
15
16namespace Tracking
17{
18
19/**
20 * This class implements the base class for all tracker object.
21 * @ingroup tracking
22 */
23class OCEAN_TRACKING_EXPORT Tracker
24{
25 public:
26
27 /**
28 * Creates a new tracker object.
29 */
31
32 /**
33 * Destructs a new tracker object.
34 */
35 virtual ~Tracker();
36};
37
38}
39
40}
41
42#endif // META_OCEAN_TRACKING_TRACKER_H
This class implements the base class for all tracker object.
Definition tracking/Tracker.h:24
Tracker()
Creates a new tracker object.
virtual ~Tracker()
Destructs a new tracker object.
The namespace covering the entire Ocean framework.
Definition Accessor.h:15