13 lines
311 B
C++
13 lines
311 B
C++
/**
|
|
* @file mcp_protocol.cpp
|
|
* @brief Implementation of the Model Context Protocol core functionality
|
|
*/
|
|
|
|
#include "mcp_protocol.h"
|
|
|
|
namespace mcp {
|
|
|
|
// Currently most functions are implemented as inline in the header
|
|
// This file will be expanded as needed for non-inline implementations
|
|
|
|
} // namespace mcp
|