blob: 892a749e47dab864dcdaa256bd90e73439250b3e [file] [log] [blame]
#ifndef _RIVE_LAYOUT_CONSTRAINT_HPP_
#define _RIVE_LAYOUT_CONSTRAINT_HPP_
#include <stdio.h>
namespace rive
{
class LayoutComponent;
class LayoutConstraint
{
public:
virtual void constrainChild(LayoutComponent* component) {}
};
} // namespace rive
#endif