Skip to content

Commit

Permalink
fix: Fix Arduino IDE support
Browse files Browse the repository at this point in the history
Added new ArkClient.h in the location that Arduino IDE demands.  This new header just includes the previous header as an adapter layer.
  • Loading branch information
ciband committed Nov 30, 2018
1 parent 1b1f152 commit 10c8df4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/arkClient.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/**
* This file is part of Ark Cpp Crypto.
*
* (c) Ark Ecosystem <info@ark.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
**/

// This file is just to provide an adapter for the Arduino IDE to find the public arkClient.h header
// There is no include guard in this file. It is intentional as this is intended to be a "copy" of the arkClient.h header.
#include "include/cpp-client/arkClient.h"

0 comments on commit 10c8df4

Please sign in to comment.