joey shelton / LED_Demo

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by Maxim nexpaq

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers testconfig.h Source File

testconfig.h

00001 /*
00002  * Copyright (c) 2015 ARM Limited. All rights reserved.
00003  * SPDX-License-Identifier: Apache-2.0
00004  * Licensed under the Apache License, Version 2.0 (the License); you may
00005  * not use this file except in compliance with the License.
00006  * You may obtain a copy of the License at
00007  *
00008  * http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an AS IS BASIS, WITHOUT
00012  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00017 #ifndef TESTCONFIG_H_
00018 #define TESTCONFIG_H_
00019 
00020 class TestConfig {
00021 
00022 public:
00023 
00024     TestConfig();
00025     ~TestConfig();
00026 
00027     void setup();
00028     void set_endpoint_name(const char *name);
00029 
00030     m2m::String& get_domain();
00031     m2m::String& get_bootstrap_server();
00032     m2m::String& get_mds_server();
00033     m2m::String& get_endpoint_name();
00034     m2m::String& get_endpoint_type();
00035     int get_port();
00036     int get_lifetime();
00037 
00038 private:
00039 
00040     int _port;
00041     int _lifetime;
00042     m2m::String _domain;
00043     m2m::String _endpointName;
00044     m2m::String _endpointType;
00045     m2m::String _bootstrapAddress;
00046     m2m::String _mdsAddress;
00047 
00048 };
00049 
00050 #endif /* TESTCONFIG_H_ */