mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:47:46 +00:00
LibSQL: Remove unused SQL::Row constructors/methods
This commit is contained in:
parent
4b70908dc4
commit
5336f23c7e
2 changed files with 0 additions and 31 deletions
|
@ -26,11 +26,7 @@ namespace SQL {
|
|||
*/
|
||||
class Row : public Tuple {
|
||||
public:
|
||||
Row();
|
||||
explicit Row(TupleDescriptor const&);
|
||||
explicit Row(RefPtr<TableDef>, u32 pointer = 0);
|
||||
Row(RefPtr<TableDef>, u32, Serializer&);
|
||||
Row(Row const&) = default;
|
||||
virtual ~Row() override = default;
|
||||
|
||||
[[nodiscard]] u32 next_pointer() const { return m_next_pointer; }
|
||||
|
@ -41,9 +37,6 @@ public:
|
|||
virtual void serialize(Serializer&) const override;
|
||||
virtual void deserialize(Serializer&) override;
|
||||
|
||||
protected:
|
||||
void copy_from(Row const&);
|
||||
|
||||
private:
|
||||
RefPtr<TableDef> m_table;
|
||||
u32 m_next_pointer { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue