智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/49/491bb5efa0417a195ea4db5bf5b...

35 lines
742 B

#ifndef SASS_REMOVE_PLACEHOLDERS_H
#define SASS_REMOVE_PLACEHOLDERS_H
#pragma once
#include "ast.hpp"
#include "operation.hpp"
namespace Sass {
class Remove_Placeholders : public Operation_CRTP<void, Remove_Placeholders> {
void fallback_impl(AST_Node_Ptr n) {}
public:
Selector_List_Ptr remove_placeholders(Selector_List_Ptr);
public:
Remove_Placeholders();
~Remove_Placeholders() { }
void operator()(Block_Ptr);
void operator()(Ruleset_Ptr);
void operator()(Media_Block_Ptr);
void operator()(Supports_Block_Ptr);
void operator()(Directive_Ptr);
template <typename U>
void fallback(U x) { return fallback_impl(x); }
};
}
#endif