diff options
author | 2019-10-15 17:45:14 +0000 | |
---|---|---|
committer | 2019-10-15 17:45:14 +0000 | |
commit | 3c7fdce635ea4fcb37fbee33765c1f2a9a32f6b3 (patch) | |
tree | 988d00285b5f261b9a13ef322120c815b9426055 /src/plugins/VshlCoreApi.cpp | |
parent | 600046b9ad216d22a641d3c323b0fac18961bd1b (diff) | |
parent | 40a0b16e2e4e8b030473254c2f04b4b377bf76f1 (diff) |
Merge "Switch to afb-helpers library" into halibut
Diffstat (limited to 'src/plugins/VshlCoreApi.cpp')
-rw-r--r-- | src/plugins/VshlCoreApi.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/plugins/VshlCoreApi.cpp b/src/plugins/VshlCoreApi.cpp index a91ca3e..a28193c 100644 --- a/src/plugins/VshlCoreApi.cpp +++ b/src/plugins/VshlCoreApi.cpp @@ -1,5 +1,6 @@ /* * Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * Copyright 2019 Konsulko Group * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. @@ -15,6 +16,8 @@ #include "VshlCoreApi.h" #include <list> +#include <sstream> +#include <json.hpp> #include "afb/AFBApiImpl.h" #include "afb/AFBRequestImpl.h" @@ -24,8 +27,6 @@ #include "voiceagents/VoiceAgentEventNames.h" #include "voiceagents/VoiceAgentsDataManager.h" -#include "json.hpp" - using namespace std; CTLP_CAPI_REGISTER("vshl-core-api"); @@ -345,4 +346,4 @@ CTLP_CAPI(setDefaultVoiceAgent, source, argsJ, eventJ) { AFB_ReqSuccess(source->request, NULL, NULL); return 0; -}
\ No newline at end of file +} |