Skip to content

Commit

Permalink
Empty header files for the state design pattern
Browse files Browse the repository at this point in the history
from Patterns in C ebook
  • Loading branch information
rileywood committed Mar 4, 2017
1 parent 3fe5f3e commit 070984d
Show file tree
Hide file tree
Showing 6 changed files with 148 additions and 0 deletions.
23 changes: 23 additions & 0 deletions state.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/**
* @file
* @author Riley Wood (riley@clearmotion.com)
* @copyright 2017 ClearMotion Inc., All Rights Reserved. *
* @defgroup state GROUP TITLE
* @addtogroup state
* @{
*
* @brief DESCRIPTION HERE
*
*/



#ifndef STATE_H
#define STATE_H


#endif // STATE_H


/// @}

25 changes: 25 additions & 0 deletions state_buffer.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file
* @author Riley Wood (riley@clearmotion.com)
* @copyright 2017 ClearMotion Inc., All Rights Reserved. *
* @defgroup state_buffer GROUP TITLE
* @addtogroup state_buffer
* @{
*
* @brief DESCRIPTION HERE
*
*/



#ifndef STATE_BUFFER_H
#define STATE_BUFFER_H

#include <stdbool.h>
#include <stdint.h>

#endif // STATE_BUFFER_H


/// @}

25 changes: 25 additions & 0 deletions state_decrypt.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file
* @author Riley Wood (riley@clearmotion.com)
* @copyright 2017 ClearMotion Inc., All Rights Reserved. *
* @defgroup state_decrypt GROUP TITLE
* @addtogroup state_decrypt
* @{
*
* @brief DESCRIPTION HERE
*
*/



#ifndef STATE_DECRYPT_H
#define STATE_DECRYPT_H

#include <stdbool.h>
#include <stdint.h>

#endif // STATE_DECRYPT_H


/// @}

25 changes: 25 additions & 0 deletions state_encrypt.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file
* @author Riley Wood (riley@clearmotion.com)
* @copyright 2017 ClearMotion Inc., All Rights Reserved. *
* @defgroup state_encrypt GROUP TITLE
* @addtogroup state_encrypt
* @{
*
* @brief DESCRIPTION HERE
*
*/



#ifndef STATE_ENCRYPT_H
#define STATE_ENCRYPT_H

#include <stdbool.h>
#include <stdint.h>

#endif // STATE_ENCRYPT_H


/// @}

25 changes: 25 additions & 0 deletions state_idle.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file
* @author Riley Wood (riley@clearmotion.com)
* @copyright 2017 ClearMotion Inc., All Rights Reserved. *
* @defgroup state_idle GROUP TITLE
* @addtogroup state_idle
* @{
*
* @brief DESCRIPTION HERE
*
*/



#ifndef STATE_IDLE_H
#define STATE_IDLE_H

#include <stdbool.h>
#include <stdint.h>

#endif // STATE_IDLE_H


/// @}

25 changes: 25 additions & 0 deletions state_send_result.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file
* @author Riley Wood (riley@clearmotion.com)
* @copyright 2017 ClearMotion Inc., All Rights Reserved. *
* @defgroup state_send_result GROUP TITLE
* @addtogroup state_send_result
* @{
*
* @brief DESCRIPTION HERE
*
*/



#ifndef STATE_SEND_RESULT_H
#define STATE_SEND_RESULT_H

#include <stdbool.h>
#include <stdint.h>

#endif // STATE_SEND_RESULT_H


/// @}

0 comments on commit 070984d

Please sign in to comment.