Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbedConnectorInterfaceWithDM by
ConnectionStatusInterface.cpp
00001 /** 00002 * @file ConnectionStatusInterface.cpp 00003 * @brief ConnectionStatusInterface 00004 * @author Doug Anson 00005 * @version 1.0 00006 * @see 00007 * 00008 * Copyright (c) 2014 00009 * 00010 * Licensed under the Apache License, Version 2.0 (the "License"); 00011 * you may not use this file except in compliance with the License. 00012 * You may obtain a copy of the License at 00013 * 00014 * http://www.apache.org/licenses/LICENSE-2.0 00015 * 00016 * Unless required by applicable law or agreed to in writing, software 00017 * distributed under the License is distributed on an "AS IS" BASIS, 00018 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00019 * See the License for the specific language governing permissions and 00020 * limitations under the License. 00021 */ 00022 00023 // Class Support 00024 #include "mbed-connector-interface/ConnectionStatusInterface.h" 00025 00026 // Connector namespace 00027 namespace Connector { 00028 00029 // Default constructor 00030 ConnectionStatusInterface::ConnectionStatusInterface() { 00031 } 00032 00033 // Copy constructor 00034 ConnectionStatusInterface::ConnectionStatusInterface(ConnectionStatusInterface & /* csi */) { 00035 } 00036 00037 // Destructor 00038 ConnectionStatusInterface::~ConnectionStatusInterface() { 00039 } 00040 00041 // Registered 00042 void ConnectionStatusInterface::object_registered(void * /* ep */,void * /* security */,void * /*data */) { 00043 } 00044 00045 // Re-registered 00046 void ConnectionStatusInterface::registration_updated(void * /* ep */,void * /* security */,void * /*data */) { 00047 } 00048 00049 // Beginning de-registration 00050 void ConnectionStatusInterface::begin_object_unregistering(void * /* ep */) { 00051 } 00052 00053 // De-registered 00054 void ConnectionStatusInterface::object_unregistered(void * /* ep */,void * /* data */) { 00055 } 00056 00057 // Bootstrapped 00058 void ConnectionStatusInterface::bootstrapped(void * /* ep */,void * /* data */) { 00059 } 00060 00061 // Value Updated 00062 void ConnectionStatusInterface::value_updated(void * /* ep */,void * /* data */,int /* type */) { 00063 } 00064 00065 } // Connector namespace
Generated on Wed Jul 13 2022 01:24:02 by
