refactor(channels): move channels to a directory

This commit is contained in:
John Zhao 2019-01-04 17:50:58 +08:00
parent 49fcb60f3b
commit ca51d2cf94
9 changed files with 11 additions and 11 deletions

View File

@ -202,7 +202,7 @@ set(MYNTEYE_SRCS
src/mynteye/types.cc
src/mynteye/util/files.cc
src/mynteye/util/strings.cc
src/mynteye/device/channels.cc
src/mynteye/device/channels/channels.cc
src/mynteye/device/config.cc
src/mynteye/device/context.cc
src/mynteye/device/device.cc

View File

@ -11,7 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "mynteye/device/channels.h"
#include "mynteye/device/channels/channels.h"
#include <bitset>
#include <chrono>

View File

@ -11,8 +11,8 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef MYNTEYE_DEVICE_CHANNELS_H_
#define MYNTEYE_DEVICE_CHANNELS_H_
#ifndef MYNTEYE_DEVICE_CHANNELS_CHANNELS_H_
#define MYNTEYE_DEVICE_CHANNELS_CHANNELS_H_
#pragma once
#include <algorithm>
@ -249,4 +249,4 @@ std::size_t to_data(const Extrinsics *ex, std::uint8_t *data,
MYNTEYE_END_NAMESPACE
#endif // MYNTEYE_DEVICE_CHANNELS_H_
#endif // MYNTEYE_DEVICE_CHANNELS_CHANNELS_H_

View File

@ -21,7 +21,7 @@
#include "mynteye/logger.h"
#include "mynteye/device/async_callback.h"
#include "mynteye/device/channels.h"
#include "mynteye/device/channels/channels.h"
#include "mynteye/device/config.h"
#include "mynteye/device/motions.h"
#include "mynteye/device/standard/device_s.h"

View File

@ -14,7 +14,7 @@
#include "mynteye/device/motions.h"
#include "mynteye/logger.h"
#include "mynteye/device/channels.h"
#include "mynteye/device/channels/channels.h"
MYNTEYE_BEGIN_NAMESPACE

View File

@ -19,7 +19,7 @@
#include <set>
#include <vector>
#include "mynteye/device/channels.h"
#include "mynteye/device/channels/channels.h"
MYNTEYE_BEGIN_NAMESPACE

View File

@ -19,7 +19,7 @@
#include <set>
#include <vector>
#include "mynteye/device/channels.h"
#include "mynteye/device/channels/channels.h"
MYNTEYE_BEGIN_NAMESPACE

View File

@ -19,7 +19,7 @@
#include <set>
#include <vector>
#include "mynteye/device/channels.h"
#include "mynteye/device/channels/channels.h"
MYNTEYE_BEGIN_NAMESPACE

View File

@ -20,7 +20,7 @@
#include <string>
#include "mynteye/mynteye.h"
#include "mynteye/device/channels.h"
#include "mynteye/device/channels/channels.h"
#include "mynteye/device/types.h"
MYNTEYE_BEGIN_NAMESPACE