19 lines
377 B
C++
19 lines
377 B
C++
// Copyright (c) 2014, IOnU Security, Inc.
|
|
// Copyright (c) 2016, Sequence Logic, Inc. All rights reserved.
|
|
#ifndef INTERNAL
|
|
#define INTERNAL
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace sequencelogic
|
|
{
|
|
int SplitString(const std::string &strToSplit, const char ch, std::vector<std::string> &splitStrings);
|
|
|
|
#ifdef WIN32
|
|
std::string getLastError();
|
|
#endif
|
|
};
|
|
|
|
#endif
|