haiku/src/kits/device/A2D.cpp
beveloper 2e54c16421 start with libdevice.so
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@694 a95241bf-73f2-0310-859d-f6bbb57e9c96
2002-08-11 00:32:58 +00:00

63 lines
462 B
C++

/*
* Copyright 2002, Marcus Overhagen. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <A2D.h>
BA2D::BA2D()
{
}
BA2D::~BA2D()
{
}
status_t
BA2D::Open(const char *portName)
{
return B_ERROR;
}
void
BA2D::Close(void)
{
}
bool
BA2D::IsOpen(void)
{
return false;
}
ssize_t
BA2D::Read(ushort *buf)
{
return 0;
}
void
BA2D::_ReservedA2D1()
{
}
void
BA2D::_ReservedA2D2()
{
}
void
BA2D::_ReservedA2D3()
{
}