1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-27 22:19:24 +02:00
audacity/src/HitTestResult.h
Emily Mabrey 40d4883233
Revert "Replace header guards with #pragma once"
This reverts commit a6bc896e246d48821ff7ae70d572aefcf0cbedd6.
2021-08-24 16:57:24 -04:00

35 lines
695 B
C++

/**********************************************************************
Tenacity
HitTestResult.h
Paul Licameli
**********************************************************************/
#ifndef __AUDACITY_HIT_TEST_RESULT__
#define __AUDACITY_HIT_TEST_RESULT__
#include <memory>
#include "Internat.h" // for TranslatableString
class wxCursor;
struct HitTestPreview
{
HitTestPreview()
{}
HitTestPreview(const TranslatableString &message_, wxCursor *cursor_,
const TranslatableString &tooltip_ = {})
: message{ message_ }, cursor{ cursor_ }, tooltip{ tooltip_ }
{}
TranslatableString message {};
wxCursor *cursor {};
TranslatableString tooltip{};
};
#endif